Line Breaks

Description

In the Putting a Button on the Dialog example, it would be nice if the button were on a new line. This is accomplished by using the line break symbol - a semi-colon ( ; ). Instead of using this code, which puts the text and buttons on the same line:

result=ui_dlg_box("Title",<<%dlg%
Hello World
%dlg% )
images/XD_Hello_World_2.gif

the following script puts the buttons on a new line:

result = ui_dlg_box("Title", <<%dlg%
Hello World ;
%dlg% )
images/XD_Hello_World_3.gif

Limitations

Desktop applications only.

See Also